:root {
  --primary-color: #2D5C7F;
  --secondary-color: #1E4060;
  --accent-color: #4A90C2;
  --light-color: #EAF3FA;
  --dark-color: #1A2E40;
  --gradient-primary: linear-gradient(135deg, #2D5C7F 0%, #4A90C2 100%);
  --hover-color: #234A66;
  --background-color: #F5F9FC;
  --text-color: #2C3A45;
  --border-color: rgba(45, 92, 127, 0.2);
  --divider-color: rgba(45, 92, 127, 0.12);
  --shadow-color: rgba(30, 64, 96, 0.12);
  --highlight-color: #F0A55A;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: linear-gradient(135deg, #F5F9FC 0%, var(--light-color) 100%);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 1rem 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); line-height: 1.3; }
h3 { font-size: clamp(1.1rem, 3vw, 1.45rem); line-height: 1.4; }

p {
  margin: 0 0 1rem 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.75;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.hamburger .line {
  width: 22px;
  height: 2px;
  background: var(--primary-color);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 1px;
}

#menu-toggle { display: none; }

#menu-toggle:checked ~ .mobile-nav {
  max-height: 400px;
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.mobile-nav ul {
  padding: 2rem;
  margin: 0;
  list-style: none;
}

.mobile-nav li { margin: 1rem 0; }

.mobile-nav a {
  display: block;
  padding: 0.8rem 0;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Header */
header {
  background: rgba(255,255,255,0.96);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow-color);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 3rem; width: auto; }

.navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.navigation a:hover { color: var(--primary-color); }

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

/* Feature Card */
.feature-card {
  background: linear-gradient(to bottom right, rgba(255,255,255,0.96), rgba(234,243,250,0.9));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 25px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::after { opacity: 1; }

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(45, 92, 127, 0.22);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 3rem;
  margin: 0 auto 1.5rem auto;
  color: var(--primary-color);
  width: 85px;
  height: 85px;
  background: rgba(45, 92, 127, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(45, 92, 127, 0.4);
}

/* Testimonials */
.testimonial {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 15px var(--shadow-color);
  transition: all 0.3s ease;
  width: 100%;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(45, 92, 127, 0.2);
}

/* FAQ */
.faq-item {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin: 1rem 0;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s ease;
  padding: 1.8rem 2rem;
  width: 100%;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(45, 92, 127, 0.18);
  border-color: var(--primary-color);
}

/* Form */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.9);
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 92, 127, 0.15);
  background: white;
}

/* Buttons */
.btn, button[type="submit"] {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 15px rgba(45, 92, 127, 0.3);
}

.btn:hover, button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 92, 127, 0.4);
}

/* Stat cards */
.stat-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 3px 15px var(--shadow-color);
  transition: all 0.3s ease;
  width: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 92, 127, 0.2);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1;
}

.stat-text {
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Contact */
.contact-section { width: 100%; }

.contact-wrapper {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Footer */
footer {
  padding: 3rem 0 1rem;
}

/* Pattern bg */
.pattern-bg {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74, 144, 194, 0.07) 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(45, 92, 127, 0.06) 1.5px, transparent 1.5px),
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(45, 92, 127, 0.03) 35px, rgba(45, 92, 127, 0.03) 70px);
  background-size: 65px 65px, 50px 50px, 100px 100px;
}



/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .feature-icon { width: 70px; height: 70px; font-size: 2.5rem; }

  .feature-card, .testimonial, .faq-item { padding: 2rem 1.5rem; }

  .stat-card { padding: 1.5rem; }

  .contact-wrapper { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .feature-card, .testimonial, .faq-item { padding: 1.5rem 1rem; }
  .stat-card { padding: 1.2rem; }
  .feature-icon { width: 60px; height: 60px; font-size: 2rem; }
}

a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}