/* Template 62 - Ice Crystal Arctic */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;600;700;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #e0f7ff 0%, #ffffff 100%);
  --gradient-2: linear-gradient(135deg, #a8daff 0%, #d4f1ff 100%);
  --gradient-3: linear-gradient(135deg, #7fc7ff 0%, #b8e4ff 100%);
  --gradient-4: linear-gradient(135deg, #00a8e8 0%, #3cc3f7 100%);
  --gradient-5: linear-gradient(135deg, #e8f9ff 0%, #cfe9ff 100%);

  --bg-primary: #f8fcff;
  --bg-secondary: #ffffff;
  --glass-bg: rgba(168, 218, 255, 0.15);
  --glass-border: rgba(0, 168, 232, 0.2);

  --text-primary: #003d5c;
  --text-secondary: #006b94;
  --text-muted: #4a90a8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Archivo", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 20%, rgba(168, 218, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(127, 199, 255, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(212, 241, 255, 0.3) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: crystalShimmer 15s ease-in-out infinite;
}

@keyframes crystalShimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 3px solid var(--glass-border);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 168, 232, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: #00a8e8;
  transform: translateY(-2px);
  text-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-4);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: #00a8e8;
}

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

/* Hero Section */
.section.head {
  padding: 9rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
  line-height: 1.1;
  animation: slideInFreeze 1s ease-out;
}

@keyframes slideInFreeze {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 900px;
  line-height: 1.8;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: left;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.section header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 1.5rem;
  border-top: 3px solid var(--glass-border);
  margin-top: 6rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1.05rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #00a8e8;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 2px solid var(--glass-border);
}

.copyright a {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
}
