/* === ROOT VARIABLES === */
:root {
  --color-primary: #e63946;
  --color-secondary: #0077b6;
  --color-accent: #00ff66;
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #cccccc;
  --color-gray-dark: #333333;

  --font-heading: "Arial Black", "Helvetica Neue", sans-serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.6s ease;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-neon: 0 0 20px var(--color-accent), 0 0 40px var(--color-accent);
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* === CONTAINER === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === ORGANIC SHAPES === */
.organic-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: var(--color-black);
  top: 10%;
  left: 5%;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: var(--color-black);
  top: 15%;
  right: 10%;
  clip-path: ellipse(40% 50% at 50% 50%);
  animation-delay: 1s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--color-primary);
  bottom: 10%;
  left: 8%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  opacity: 0.2;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  bottom: 20%;
  right: 5%;
  clip-path: circle(40% at 50% 50%);
  opacity: 0.3;
  animation-delay: 2s;
}

.shape-5 {
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  top: 30%;
  right: -50px;
  opacity: 0.1;
  filter: blur(40px);
}

.shape-6 {
  width: 180px;
  height: 180px;
  background: var(--color-primary);
  top: 50%;
  left: -60px;
  opacity: 0.15;
  filter: blur(50px);
}

.shape-7 {
  width: 140px;
  height: 140px;
  background: var(--color-black);
  bottom: 30%;
  right: 10%;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 0.1;
}

.shape-8 {
  width: 160px;
  height: 160px;
  background: var(--color-secondary);
  top: 20%;
  left: 15%;
  opacity: 0.2;
  filter: blur(60px);
}

.shape-9 {
  width: 220px;
  height: 220px;
  background: var(--color-accent);
  bottom: 10%;
  right: 5%;
  opacity: 0.12;
  filter: blur(70px);
}

.shape-10 {
  width: 190px;
  height: 190px;
  background: var(--color-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  filter: blur(80px);
}

/* === COOKIE NOTICE === */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 14px;
}

.cookie-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: all var(--transition-fast);
}

.cookie-btn:hover {
  background: var(--color-accent);
  color: var(--color-black);
  box-shadow: var(--shadow-neon);
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  background: var(--color-primary);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.desktop-nav {
  display: flex;
  gap: 40px;
}

.desktop-nav a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 5px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.burger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
  background: var(--color-black);
  margin-top: 20px;
  border-radius: 8px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-link {
  color: var(--color-white);
  padding: 12px 20px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.mobile-link:hover {
  background: var(--color-primary);
  padding-left: 30px;
}

/* === HERO SECTION === */
.hero-section {
  background: var(--color-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

.organic-overlay {
  position: absolute;
  top: 10%;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--color-black);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  z-index: 2;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.neon-glow {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 1;
}

.hero-content {
  color: var(--color-white);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.title-main {
  color: var(--color-white);
}

.title-accent {
  color: var(--color-black);
  text-shadow: 3px 3px 0 var(--color-accent);
}

.title-sub {
  font-size: 48px;
  color: var(--color-white);
  opacity: 0.9;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-accent);
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--color-accent);
}

.stat-label {
  font-size: 14px;
  color: var(--color-white);
  opacity: 0.9;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 100px 0;
  background: var(--color-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.section-title.centered {
  text-align: center;
  align-items: center;
  margin-bottom: 60px;
}

.title-line {
  color: var(--color-black);
}

.title-line.accent {
  color: var(--color-primary);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-block {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-dark);
}

.about-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feature-badge {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.about-image {
  position: relative;
}

.image-stack {
  position: relative;
  height: 500px;
}

.stack-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.stack-back {
  width: 80%;
  height: 80%;
  top: 0;
  left: 0;
  background: var(--color-secondary);
  z-index: 1;
}

.stack-front {
  width: 80%;
  height: 80%;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.stack-item:hover {
  transform: scale(1.05);
}

.stack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neon-border {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  box-shadow: var(--shadow-neon);
}

/* === CASES SECTION === */
.cases-section {
  padding: 100px 0;
  background: var(--color-secondary);
  position: relative;
}

.cases-section .section-title .title-line {
  color: var(--color-white);
}

.cases-section .section-title .title-line.accent {
  color: var(--color-accent);
  text-shadow: 0 0 20px var(--color-accent);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.case-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-card:hover .case-img {
  transform: scale(1.1);
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.case-card:hover .case-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 30px;
  color: var(--color-white);
}

.overlay-title {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.overlay-text {
  font-size: 14px;
  line-height: 1.6;
}

.case-content {
  padding: 30px;
}

.case-title {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--color-black);
}

.case-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  margin-bottom: 20px;
}

.case-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.case-tag {
  background: var(--color-gray-light);
  color: var(--color-gray-dark);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* === TEAM SECTION === */
.team-section {
  padding: 100px 0;
  background: var(--color-gray-light);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.team-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-normal);
}

.team-card:hover .team-icon {
  background: var(--color-accent);
  color: var(--color-black);
  box-shadow: var(--shadow-neon);
}

.team-icon svg {
  width: 50px;
  height: 50px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-black);
}

.team-role {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

/* === CONTACTS SECTION === */
.contacts-section {
  padding: 100px 0;
  background: var(--color-white);
  position: relative;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 1px;
}

.info-value {
  font-size: 16px;
  color: var(--color-black);
  font-weight: 500;
}

.info-value:hover {
  color: var(--color-primary);
}

.info-note {
  background: var(--color-gray-light);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--color-gray-light);
  padding: 40px;
  border-radius: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
}

.form-input,
.form-textarea {
  padding: 14px 18px;
  border: 2px solid var(--color-gray-medium);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 13px;
  color: var(--color-primary);
  display: none;
}

.form-error.show {
  display: block;
}

.checkbox-group {
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  margin-top: 2px;
}

.checkbox-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

.checkbox-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-submit {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  background: var(--color-accent);
  color: var(--color-black);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.submit-icon {
  width: 20px;
  height: 20px;
}

.map-section {
  margin-top: 60px;
}

.map-title {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
  color: var(--color-black);
}

.map-wrapper {
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* === FOOTER === */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--color-white);
  font-size: 14px;
  transition: all var(--transition-fast);
  padding-left: 0;
}

.footer-nav a:hover {
  color: var(--color-accent);
  padding-left: 10px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-white);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--color-accent);
}

.footer-contact-item:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 13px;
  color: var(--color-gray-medium);
}

/* Policy/secondary footer */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px 0 40px;
  position: relative;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.site-footer .footer-col h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.site-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer .footer-nav a,
.site-footer .footer-contacts a {
  color: #f2f2f2;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.site-footer .footer-nav a:hover,
.site-footer .footer-contacts a:hover {
  color: var(--color-accent);
}

.site-footer .footer-contacts p {
  color: #dcdcdc;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  text-align: center;
  color: #cfcfcf;
  font-size: 13px;
}

/* === POLICY PAGES === */
.policy-section {
  padding: 100px 0 120px;
  background: radial-gradient(circle at 20% 20%, rgba(0, 119, 182, 0.08), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(230, 57, 70, 0.08), transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(0, 255, 102, 0.08), transparent 35%),
    var(--color-white);
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(0, 119, 182, 0.08);
  border: 1px solid rgba(0, 119, 182, 0.3);
  border-radius: 999px;
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.policy-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: var(--shadow-neon);
}

.policy-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--color-black);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.policy-subtitle {
  font-size: 18px;
  color: var(--color-gray-dark);
  font-weight: 500;
  max-width: 780px;
  margin: 0 auto;
}

.policy-content {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.policy-block {
  background: linear-gradient(145deg, #ffffff, #f7f9fb);
  padding: 34px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.policy-block:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.policy-block h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.policy-block h2::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: var(--shadow-neon);
  flex-shrink: 0;
}

.policy-block h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-secondary);
  margin: 25px 0 15px;
}

.policy-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 15px;
}

.policy-block ul {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.policy-block ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-gray-dark);
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.policy-block ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
}

.policy-block strong {
  color: var(--color-black);
  font-weight: 700;
}

.policy-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 10px;
}

.policy-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 119, 182, 0.1);
  color: var(--color-secondary);
  font-size: 14px;
  border: 1px solid rgba(0, 119, 182, 0.25);
}

.policy-highlight {
  background: rgba(230, 57, 70, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: 14px 16px;
  border-radius: 12px;
  margin: 16px 0;
  color: var(--color-black);
}

.policy-list-numbered {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
  margin: 20px 0;
}

.policy-list-numbered li {
  counter-increment: item;
  padding-left: 36px;
  position: relative;
  margin-bottom: 14px;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

.policy-list-numbered li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.policy-block a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.policy-block a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.cookie-type-card {
  background: var(--color-white);
  padding: 25px;
  border-radius: 15px;
  margin: 20px 0;
  border: 2px solid var(--color-gray-medium);
  transition: all var(--transition-normal);
}

.cookie-type-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.cookie-type-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-primary);
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
}

.cookie-type-card p {
  margin-bottom: 10px;
}

.cookie-type-card ul {
  margin: 15px 0;
}

.business-model-final {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-left: 5px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}

.business-model-final::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.business-model-final h2 {
  color: var(--color-white);
}

.business-model-final h2::before {
  background: var(--color-accent);
}

.highlight-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-white);
  font-weight: 500;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.policy-footer {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.btn-back:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-back::before {
  content: "←";
  font-size: 20px;
  transition: transform var(--transition-fast);
}

.btn-back:hover::before {
  transform: translateX(-5px);
}

/* === THANK YOU PAGE === */
.thank-you-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
  z-index: 2;
}

.thank-you-container {
  max-width: 800px;
  width: 100%;
  background: var(--color-white);
  border-radius: 30px;
  padding: 60px 50px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thank-you-icon-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.thank-you-icon {
  display: inline-block;
  animation: checkmarkBounce 0.8s ease-out;
}

@keyframes checkmarkBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-icon svg {
  filter: drop-shadow(0 0 20px var(--color-accent));
}

.thank-you-content {
  text-align: center;
}

.thank-you-title {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-black);
  margin-bottom: 15px;
  line-height: 1.2;
}

.thank-you-subtitle {
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 40px;
  font-weight: 600;
}

.thank-you-message {
  background: var(--color-gray-light);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.thank-you-message p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-dark);
  margin-bottom: 30px;
}

.thank-you-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.thank-you-info-card {
  background: var(--color-white);
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.thank-you-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.thank-you-info-card .info-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.thank-you-info-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 8px;
}

.thank-you-info-card p {
  font-size: 13px;
  color: var(--color-gray-dark);
  line-height: 1.5;
  margin: 0;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary-thank {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-thank:hover {
  background: var(--color-accent);
  color: var(--color-black);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.btn-secondary-thank {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 16px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary-thank:hover {
  background: var(--color-black);
  transform: translateY(-2px);
}

.thank-you-footer {
  border-top: 2px solid var(--color-gray-light);
  padding-top: 30px;
  margin-top: 20px;
}

.thank-you-footer p {
  font-size: 15px;
  color: var(--color-gray-dark);
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--color-gray-light);
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.contact-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.contact-link svg {
  flex-shrink: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 56px;
  }

  .title-sub {
    font-size: 36px;
  }

  .section-title {
    font-size: 48px;
  }

  /* Adding responsive styles for policy pages */
  .policy-title {
    font-size: 42px;
  }

  .policy-block {
    padding: 26px;
  }

  .policy-block h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .cases-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 42px;
  }

  .title-sub {
    font-size: 28px;
  }

  .section-title {
    font-size: 36px;
  }

  .hero-stats {
    justify-content: space-around;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  /* Adding mobile responsive styles for policy pages */
  .policy-title {
    font-size: 36px;
  }

  .policy-block {
    padding: 25px 20px;
  }

  .policy-block h2 {
    font-size: 24px;
  }

  .policy-block h3 {
    font-size: 20px;
  }

  .cookie-type-card {
    padding: 20px;
  }

  /* === RESPONSIVE: THANK YOU PAGE === */
  .thank-you-container {
    padding: 40px 30px;
  }

  .thank-you-title {
    font-size: 36px;
  }

  .thank-you-subtitle {
    font-size: 18px;
  }

  .thank-you-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .thank-you-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary-thank,
  .btn-secondary-thank {
    width: 100%;
    justify-content: center;
  }

  .contact-links {
    flex-direction: column;
    gap: 12px;
  }

  .contact-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .title-sub {
    font-size: 22px;
  }

  .section-title {
    font-size: 28px;
  }

  .logo a {
    font-size: 20px;
  }

  .hero-section,
  .about-section,
  .cases-section,
  .team-section,
  .contacts-section {
    padding: 60px 0;
  }

  /* Adding small mobile responsive styles for policy pages */
  .policy-section {
    padding: 60px 0 80px;
  }

  .policy-title {
    font-size: 28px;
  }

  .policy-subtitle {
    font-size: 16px;
  }

  .policy-block {
    padding: 20px 15px;
  }

  .policy-block h2 {
    font-size: 20px;
  }

  .policy-block h3 {
    font-size: 18px;
  }

  .policy-block p,
  .policy-block ul li {
    font-size: 14px;
  }

  .btn-back {
    padding: 14px 30px;
    font-size: 14px;
  }

  .highlight-text {
    font-size: 16px;
  }

  /* === RESPONSIVE: THANK YOU PAGE === */
  .thank-you-wrapper {
    padding: 40px 15px;
  }

  .thank-you-container {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .thank-you-title {
    font-size: 28px;
  }

  .thank-you-subtitle {
    font-size: 16px;
  }

.thank-you-icon svg {
  width: 80px;
  height: 80px;
}
}

/* === BLOG PAGE === */
.blog-page {
  background: #0a0a0a;
  color: #f5f5f5;
}

.blog-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.blog-hero::before,
.blog-hero::after {
  content: "";
  position: absolute;
  filter: blur(120px);
  opacity: 0.4;
}

.blog-hero::before {
  width: 320px;
  height: 320px;
  background: #e63946;
  top: -40px;
  left: -60px;
}

.blog-hero::after {
  width: 340px;
  height: 340px;
  background: #0077b6;
  bottom: -60px;
  right: -80px;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  display: grid;
  gap: 18px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 6vw, 56px);
  color: #ffffff;
}

.hero-subtitle {
  color: #d1d1d1;
  font-size: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-weight: 800;
  font-size: 22px;
  color: #00ff66;
}

.stat-label {
  color: #e0e0e0;
  font-size: 14px;
}

.blog-categories {
  padding: 0 0 40px;
  position: relative;
}

.categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-tag {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f5f5;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-tag:hover,
.category-tag.active {
  background: #e63946;
  border-color: #e63946;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.35);
}

.featured-article {
  padding: 20px 0 70px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 40px);
  color: #ffffff;
  margin-bottom: 24px;
}

.featured-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.featured-image {
  position: relative;
}

.featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e63946;
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.35);
}

.featured-content {
  padding: 20px 22px 24px;
  display: grid;
  gap: 12px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #bfbfbf;
  font-size: 14px;
}

.article-category {
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
}

.article-category.delivery {
  background: rgba(0, 119, 182, 0.15);
  color: #cde9fb;
}

.article-date,
.article-read-time {
  color: #bfbfbf;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 4vw, 30px);
  color: #ffffff;
}

.featured-excerpt {
  color: #d8d8d8;
  line-height: 1.7;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.author-name {
  font-weight: 700;
  color: #ffffff;
}

.author-role {
  color: #bfbfbf;
  font-size: 14px;
}

.read-more-btn {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.read-more-btn:hover {
  background: #e63946;
  border-color: #e63946;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.35);
}

.blog-posts {
  padding: 0 0 70px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  position: relative;
}

.blog-img {
  width: 100%;
  display: block;
}

.blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
}

.blog-category.tips {
  background: #00ff66;
  color: #053013;
}

.blog-category.comparison {
  background: #0077b6;
}

.blog-category.delivery {
  background: #e63946;
}

.blog-category.news {
  background: #ffb703;
  color: #1c1303;
}

.blog-card-content {
  padding: 16px 18px 18px;
  display: grid;
  gap: 10px;
}

.blog-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #bfbfbf;
  font-size: 13px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #ffffff;
}

.blog-excerpt {
  color: #d8d8d8;
  line-height: 1.6;
  font-size: 14px;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
}

.author-name-small {
  color: #ffffff;
  font-size: 13px;
}

.blog-link {
  color: #e63946;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.blog-link:hover {
  color: #ff6a7b;
}

.load-more-section {
  text-align: center;
  margin-top: 28px;
}

.load-more-btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.load-more-btn:hover {
  background: #e63946;
  border-color: #e63946;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.35);
}

.newsletter-section {
  padding: 0 0 80px;
}

.newsletter-card {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.2), rgba(230, 57, 70, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: center;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 8px;
}

.newsletter-text {
  color: #e0e0e0;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.newsletter-btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: #e63946;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-btn:hover {
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.35);
}

.newsletter-privacy {
  color: #cfcfcf;
  font-size: 13px;
  margin-top: 8px;
}

.newsletter-privacy a {
  color: #ffffff;
  text-decoration: underline;
}

.newsletter-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-icon {
  font-size: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .newsletter-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 90px 0 60px;
  }

  .featured-content,
  .blog-card-content {
    padding: 16px;
  }

  .featured-footer,
  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
