/* ===== CSS RESET & NORMALIZE ===== */
* {
  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', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ===== GEOMETRIC STRUCTURED DESIGN SYSTEM ===== */
:root {
  --primary: #1a4566;
  --secondary: #2B5F8E;
  --accent: #D67A2E;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --dark-text: #2c3e50;
  --medium-text: #5a6c7d;
  --border-color: #e0e6ed;
  --shadow-sm: 0 2px 4px rgba(26, 69, 102, 0.08);
  --shadow-md: 0 4px 12px rgba(26, 69, 102, 0.12);
  --shadow-lg: 0 8px 24px rgba(26, 69, 102, 0.16);
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--medium-text);
}

.section-intro {
  font-size: 18px;
  color: var(--medium-text);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ===== BUTTONS (GEOMETRIC STRUCTURED) ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn-primary:hover {
  background-color: #bf6b25;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

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

.btn-small {
  padding: 10px 24px;
  font-size: 14px;
}

/* ===== HEADER (GEOMETRIC) ===== */
header {
  background-color: var(--white);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  margin-left: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

.header-cta {
  display: none;
}

/* ===== MOBILE MENU (GEOMETRIC) ===== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--secondary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--primary);
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 24px);
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

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

.mobile-nav a {
  padding: 16px 20px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

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

/* ===== HERO SECTION (GEOMETRIC) ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 0 100%);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: var(--white);
}

/* ===== SERVICES GRID (FLEXBOX ONLY) ===== */
.services-overview {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.service-card {
  background-color: var(--white);
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 350px;
  min-width: 280px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent);
  transition: height 0.3s ease;
}

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

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0;
}

/* ===== FEATURES GRID (FLEXBOX) ===== */
.why-choose-us {
  padding: 60px 20px;
  background-color: var(--white);
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
  position: relative;
  padding-bottom: 12px;
}

.feature h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

.feature p {
  font-size: 15px;
  color: var(--medium-text);
}

/* ===== TESTIMONIALS (READABLE TEXT) ===== */
.testimonials {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 32px 24px;
  flex: 1 1 350px;
  max-width: 500px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.testimonial-card .rating {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--accent);
}

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

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-indicator {
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
  margin-top: 32px;
}

.trust-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: 600;
  margin-top: 16px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

/* ===== CTA SECTIONS (GEOMETRIC) ===== */
.cta-final, .cta-services, .cta-about, .cta-pricing, .cta-references, .cta-contact, .cta-thank-you {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.urgency-text, .benefits-summary, .trust-indicators, .response-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 24px;
  font-style: italic;
}

/* ===== PRICING TABLES ===== */
.pricing-table {
  padding: 60px 20px;
  background-color: var(--white);
}

.pricing-table h2 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.price-card {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  margin-bottom: 20px;
}

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

.price-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
}

.price-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0;
  display: block;
}

.price-card p {
  font-size: 15px;
  color: var(--medium-text);
}

/* ===== PACKAGES ===== */
.package-pricing {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.package-card {
  background-color: var(--white);
  border-left: 4px solid var(--accent);
  padding: 24px;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: var(--shadow-sm);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  margin-bottom: 20px;
}

.package-card h3 {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ===== STATISTICS ===== */
.statistics {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  padding: 24px;
  background-color: var(--white);
  border: 2px solid var(--border-color);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: var(--medium-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== CONTACT SECTIONS ===== */
.contact-methods {
  padding: 60px 20px;
  background-color: var(--white);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.contact-card {
  background-color: var(--light-bg);
  border-left: 4px solid var(--accent);
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 450px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
}

.contact-value {
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
  margin: 16px 0;
}

/* ===== FORM PLACEHOLDER ===== */
.contact-form-section {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.form-placeholder {
  background-color: var(--white);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid var(--border-color);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.form-placeholder ul {
  margin: 16px 0;
  padding-left: 24px;
}

.form-placeholder li {
  margin-bottom: 8px;
  color: var(--medium-text);
}

.form-placeholder .note {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
  margin-top: 24px;
}

/* ===== SERVICE DETAILS ===== */
.services-detailed {
  padding: 60px 20px;
  background-color: var(--white);
}

.service-detail {
  background-color: var(--light-bg);
  padding: 32px 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.service-detail h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin: 16px 0;
  display: inline-block;
}

/* ===== TECHNOLOGY SECTION ===== */
.technology {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.tech-item {
  background-color: var(--white);
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 350px;
  border: 2px solid var(--border-color);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  margin-bottom: 20px;
}

.tech-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

/* ===== COMPANY STORY & TEXT SECTIONS ===== */
.company-story, .mission-values, .text-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.text-section p {
  margin-bottom: 16px;
}

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

.text-section li {
  margin-bottom: 8px;
  color: var(--medium-text);
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-card {
  background-color: var(--light-bg);
  padding: 32px 24px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  border: 2px solid var(--border-color);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

/* ===== HOURS & SERVICE AREA ===== */
.office-hours, .service-area {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.hours-card {
  background-color: var(--white);
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 450px;
  border-left: 4px solid var(--accent);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  margin-bottom: 20px;
}

.hours-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.service-area .note {
  font-style: italic;
  color: var(--medium-text);
  margin-top: 24px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.thank-you-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.next-steps {
  padding: 60px 20px;
  background-color: var(--white);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.step-card {
  background-color: var(--light-bg);
  padding: 24px;
  flex: 1 1 250px;
  max-width: 300px;
  border-left: 4px solid var(--accent);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.response-time, .while-waiting, .contact-reminder {
  padding: 60px 20px;
  text-align: center;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.link-card {
  background-color: var(--light-bg);
  padding: 20px 24px;
  flex: 1 1 200px;
  max-width: 250px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.link-card:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.contact-legal {
  padding: 60px 20px;
  background-color: var(--light-bg);
  text-align: center;
}

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

/* ===== FOOTER (GEOMETRIC) ===== */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 20px 24px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}

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

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.cookie-btn-accept {
  background-color: var(--accent);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: #bf6b25;
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--white);
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: var(--accent);
}

/* ===== COOKIE MODAL ===== */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: var(--white);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
  color: var(--primary);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: var(--light-bg);
  border-left: 4px solid var(--accent);
}

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

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

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

.cookie-category p {
  font-size: 14px;
  color: var(--medium-text);
  margin-bottom: 8px;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .main-nav {
    display: flex;
    align-items: center;
  }

  .header-cta {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero {
    padding: 120px 20px;
  }

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

  .hero-subtitle {
    font-size: 22px;
  }

  .services-grid {
    justify-content: flex-start;
  }

  .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  .features-grid {
    justify-content: flex-start;
  }

  .feature {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-content {
    justify-content: flex-start;
  }

  .footer-section {
    flex: 1 1 calc(25% - 30px);
  }
}

@media (min-width: 1024px) {
  .service-card {
    flex: 1 1 calc(25% - 18px);
  }

  .feature {
    flex: 1 1 calc(25% - 24px);
  }

  .price-card {
    flex: 1 1 calc(25% - 18px);
  }

  .tech-item {
    flex: 1 1 calc(33.333% - 16px);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  .service-card, .price-card, .feature, .tech-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card, .feature, .testimonial-card, .price-card {
  animation: fadeIn 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  #cookie-banner,
  #cookie-modal,
  .cta-buttons {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  a {
    text-decoration: underline;
    color: #000;
  }
}