/* =================================
   VIBRANT ENERGETIC DESIGN SYSTEM
   Steely Focus - Dynamic & Bold
   ================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1a252f;
  background: #ffffff;
  overflow-x: hidden;
}

/* VIBRANT COLOR SYSTEM */
:root {
  --primary: #c0281a;
  --primary-dark: #8a1d13;
  --primary-light: #e63526;
  --secondary: #1a252f;
  --secondary-light: #2d3e50;
  --accent-yellow: #FFD700;
  --accent-orange: #FF6B35;
  --accent-pink: #FF1493;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --medium-gray: #e0e4e8;
  --dark-gray: #4a5568;
  --success: #00D084;
  --shadow: 0 8px 24px rgba(192, 40, 26, 0.15);
  --shadow-hover: 0 12px 32px rgba(192, 40, 26, 0.25);
}

/* TYPOGRAPHY - BOLD & ENERGETIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: var(--primary-light);
  transform: translateX(2px);
}

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

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  font-weight: 700;
  color: var(--secondary);
}

em {
  font-style: italic;
  color: var(--dark-gray);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER - ENERGETIC DESIGN */
header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 4px solid var(--primary);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent-yellow);
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(192, 40, 26, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--primary-light);
  transform: scale(1.1) rotate(90deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-light) 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 24px 24px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--primary-light);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent-yellow);
  transform: translateX(8px);
  border-left-color: var(--accent-yellow);
}

/* HERO SECTION - BOLD & DYNAMIC */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 56px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: slideDown 0.8s ease-out;
}

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

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0.95;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* BUTTONS - VIBRANT & BOLD */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--accent-yellow);
  color: var(--secondary);
  border-color: var(--accent-yellow);
}

.btn-primary:hover {
  background: var(--secondary);
  color: var(--accent-yellow);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* HERO CTA */
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeIn 1.2s ease-out 0.6s both;
}

/* TRUST BADGES - ENERGETIC */
.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeIn 1.4s ease-out 0.9s both;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTIONS - DYNAMIC SPACING */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.benefits,
.services-overview,
.how-it-works,
.testimonials,
.company-story,
.values,
.stats,
.certifications,
.why-choose-us,
.portfolio-stats,
.project-showcase,
.pricing-intro,
.pricing-tables,
.financing,
.contact-methods,
.office-info,
.company-details,
.services-detail,
.service-process {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.benefits {
  background: var(--light-gray);
}

.services-overview {
  background: var(--white);
}

.how-it-works {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.testimonials {
  background: var(--secondary);
  color: var(--white);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

/* SECTION HEADINGS */
section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-orange) 100%);
  border-radius: 3px;
}

.testimonials h2,
.cta-section h2 {
  color: var(--white);
}

.testimonials h2::after,
.cta-section h2::after {
  background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--white) 100%);
}

/* CARD GRIDS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.values-grid,
.stats-grid,
.testimonials-grid,
.projects-grid,
.financing-grid,
.contact-grid,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

/* CARDS - VIBRANT DESIGN */
.benefit-card,
.service-card,
.value-card,
.stat-card,
.project-card,
.financing-card,
.contact-card,
.trust-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  border-top: 5px solid var(--primary);
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 0;
  height: 5px;
  background: var(--accent-yellow);
  transition: width 0.4s ease;
}

.benefit-card:hover::before,
.service-card:hover::before,
.value-card:hover::before {
  width: 100%;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.project-card:hover,
.financing-card:hover,
.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.project-card h3,
.financing-card h3,
.contact-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
}

/* STAT CARDS - BOLD NUMBERS */
.stat-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
  color: var(--white);
  text-align: center;
  border-top: none;
  padding: 40px 24px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--accent-yellow);
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-card p {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SERVICE CARDS WITH PRICING */
.service-card .price,
.pricing-card .price {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin: 16px 0;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  margin-bottom: 20px;
  border-left: 6px solid var(--accent-yellow);
  position: relative;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
  margin-top: 16px;
  font-size: 14px;
  text-align: right;
}

/* STEPS - DYNAMIC FLOW */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  position: relative;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(192, 40, 26, 0.3);
}

.step h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--dark-gray);
}

/* PRICING CARDS */
.pricing-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  transition: all 0.3s ease;
  border-top: 6px solid var(--primary);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--accent-orange);
}

.pricing-card h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 16px;
}

.pricing-card h2::after {
  display: none;
}

.price-note {
  font-size: 14px;
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 20px;
}

/* SERVICE DETAIL CARDS */
.service-detail-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  border-left: 6px solid var(--primary);
}

.service-detail-card h2 {
  text-align: left;
  font-size: 28px;
}

.service-detail-card h2::after {
  display: none;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.text-section ul {
  margin: 24px 0;
}

.text-section li {
  padding-left: 8px;
  position: relative;
  margin-bottom: 12px;
}

.text-section li::before {
  content: '▸';
  color: var(--primary);
  font-weight: 900;
  position: absolute;
  left: -20px;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* CONTACT INFO */
.contact-info {
  font-size: 16px;
  margin-top: 24px;
  opacity: 0.9;
}

.contact-info a {
  color: var(--accent-yellow);
  font-weight: 700;
  text-decoration: underline;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  background: var(--light-gray);
}

.legal-content .text-section {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* THANK YOU PAGE */
.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

/* PROJECT DETAILS */
.project-details {
  font-size: 14px;
  color: var(--dark-gray);
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--medium-gray);
}

/* FOOTER - BOLD */
footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 20px 24px;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-section h3 {
  color: var(--accent-yellow);
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--accent-yellow);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--primary);
}

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

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

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all-cookies {
  background: var(--accent-yellow);
  color: var(--secondary);
  border-color: var(--accent-yellow);
}

#accept-all-cookies:hover {
  background: var(--white);
  transform: scale(1.05);
}

#reject-all-cookies {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

#reject-all-cookies:hover {
  background: var(--white);
  color: var(--secondary);
  transform: scale(1.05);
}

#cookie-settings {
  background: transparent;
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

#cookie-settings:hover {
  background: var(--accent-yellow);
  color: var(--secondary);
  transform: scale(1.05);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-content h2 {
  text-align: left;
  margin-bottom: 24px;
  color: var(--secondary);
}

.cookie-modal-content h2::after {
  display: none;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: var(--medium-gray);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--primary);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border-radius: 30px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#save-cookie-preferences {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

#save-cookie-preferences:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

#close-cookie-modal {
  background: var(--medium-gray);
  color: var(--secondary);
}

#close-cookie-modal:hover {
  background: var(--dark-gray);
  color: var(--white);
  transform: scale(1.05);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Container padding */
  .container {
    padding: 0 16px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Card adjustments */
  .benefit-card,
  .service-card,
  .value-card,
  .stat-card,
  .testimonial-card,
  .project-card,
  .financing-card,
  .contact-card,
  .trust-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Footer adjustments */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner adjustments */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 42px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    background: var(--white);
    color: var(--secondary);
  }
  
  .btn {
    border: 2px solid var(--secondary);
  }
}