/* ========================================
   GO365 Solutions - Design System
   ======================================== */

/* CSS Custom Properties */
:root {
  /* Brand Colours */
  --go365-primary: #10B981;
  --go365-primary-dark: #059669;
  --go365-primary-light: #34D399;
  --go365-secondary: #3B82F6;
  --go365-secondary-dark: #2563EB;
  --go365-secondary-light: #60A5FA;
  --go365-dark: #0F172A;
  --go365-dark-lighter: #1E293B;
  --go365-light: #F8FAFC;
  --go365-gray: #64748B;
  --go365-gray-light: #94A3B8;
  --go365-gray-dark: #475569;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--go365-primary) 0%, var(--go365-secondary) 100%);
  --gradient-dark: linear-gradient(180deg, var(--go365-dark) 0%, var(--go365-dark-lighter) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);

  /* Typography */
  --font-heading: 'Verdana', Geneva, sans-serif;
  --font-body: 'Trebuchet MS', 'Lucida Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--go365-dark);
  background-color: var(--go365-light);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--go365-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--go365-gray-dark);
}

a {
  color: var(--go365-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--go365-secondary-dark);
}

ul,
ol {
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
}

/* ========================================
   Layout Utilities
   ======================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--gradient-dark);
  color: var(--go365-light);
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--go365-light);
}

.section--dark p {
  color: var(--go365-gray-light);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

.text-left {
  text-align: left;
}

.flex {
  display: flex;
}

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

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

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

/* ========================================
   Navigation
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--go365-light);
  text-decoration: none;
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.nav__logo-text {
  color: var(--go365-primary);
}

.nav__menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--space-xl);
}

.nav__menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  padding: var(--space-lg);
  gap: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .nav__menu {
    display: flex;
    flex-direction: row;
  }

  .nav__toggle {
    display: none !important;
  }
}

.nav__link {
  color: var(--go365-gray-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--go365-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--go365-primary);
  transition: width var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--go365-light);
  transition: all var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex;
  }
}

/* Auth buttons - basic styling */
.nav__auth {
  margin-right: var(--space-sm);
}

/* ========================================
   Dropdown Navigation
   ======================================== */

.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  margin-top: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
  list-style: none;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: var(--space-sm);
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: rgba(15, 23, 42, 0.98);
}

.nav__dropdown li {
  margin: 0;
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--go365-gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.active {
  color: var(--go365-primary);
  background: rgba(16, 185, 129, 0.1);
}

/* Mobile dropdown handling */
@media (max-width: 767px) {
  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: var(--space-sm) 0 0 var(--space-md);
    padding: 0;
  }

  .nav__dropdown::before {
    display: none;
  }

  .nav__dropdown-link {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
  }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  min-height: 48px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(16, 185, 129, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(16, 185, 129, 0.4);
  color: white;
}

.btn--secondary {
  background: transparent;
  color: var(--go365-light);
  border: 2px solid var(--go365-light);
}

.btn--secondary:hover {
  background: var(--go365-light);
  color: var(--go365-dark);
}

.btn--outline {
  background: transparent;
  color: var(--go365-primary);
  border: 2px solid var(--go365-primary);
}

.btn--outline:hover {
  background: var(--go365-primary);
  color: white;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 40px;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--go365-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease forwards;
}

.hero__title {
  color: var(--go365-light);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero__title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  color: var(--go365-gray-light);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero__visual {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  display: none;
}

@media (min-width: 1024px) {
  .hero__visual {
    display: block;
  }
}

/* Floating blocks animation */
.hero__blocks {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  display: none;
}

@media (min-width: 1024px) {
  .hero__blocks {
    display: block;
  }
}

.hero__block {
  position: absolute;
  border-radius: var(--radius-lg);
  animation: float 6s ease-in-out infinite;
}

.hero__block--1 {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
  opacity: 0.9;
}

.hero__block--2 {
  width: 60px;
  height: 60px;
  background: var(--go365-secondary);
  top: 50%;
  left: 60%;
  animation-delay: 1s;
  opacity: 0.7;
}

.hero__block--3 {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.5);
  top: 70%;
  left: 30%;
  animation-delay: 2s;
  opacity: 0.6;
}

.hero__block--4 {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.6);
  top: 25%;
  left: 70%;
  animation-delay: 1.5s;
  opacity: 0.8;
}

/* ========================================
   Cards
   ======================================== */

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card--glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card--glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--go365-gray);
  margin-bottom: 0;
}

/* ========================================
   Services Section
   ======================================== */

.services-preview {
  background: var(--go365-light);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__subtitle {
  color: var(--go365-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--go365-gray);
}

/* ========================================
   Why Choose Us
   ======================================== */

.why-us {
  background: white;
}

.why-us__grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.why-us__content {
  order: 2;
}

@media (min-width: 768px) {
  .why-us__content {
    order: 1;
  }
}

.why-us__visual {
  order: 1;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .why-us__visual {
    order: 2;
  }
}

.why-us__list {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0 0;
}

.why-us__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.why-us__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--go365-primary);
}

.why-us__icon svg {
  width: 100%;
  height: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  color: var(--go365-gray-light);
  font-size: 0.875rem;
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta__title {
  color: var(--go365-light);
  margin-bottom: var(--space-md);
}

.cta__text {
  color: var(--go365-gray-light);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--go365-dark);
  color: var(--go365-gray-light);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--go365-light);
}

.footer__logo-text span {
  color: var(--go365-primary);
}

.footer__description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--go365-gray);
}

.footer__title {
  color: var(--go365-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: var(--go365-gray);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--go365-primary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--go365-primary);
  margin-top: 2px;
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--go365-gray);
}

/* ========================================
   Forms
   ======================================== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--go365-dark);
}

.form-label .required {
  color: #EF4444;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  background: white;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--go365-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--go365-gray-light);
}

/* ========================================
   Contact Page Specific
   ======================================== */

.contact-section {
  padding-top: 120px;
}

.contact-grid {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.contact-form-card {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-info-card {
  background: var(--gradient-dark);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  color: var(--go365-light);
}

.contact-info__title {
  color: var(--go365-light);
  margin-bottom: var(--space-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
  color: var(--go365-primary);
}

.contact-info__label {
  font-size: 0.875rem;
  color: var(--go365-gray-light);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  color: var(--go365-light);
  font-weight: 500;
}

.contact-info__value a {
  color: var(--go365-light);
}

.contact-info__value a:hover {
  color: var(--go365-primary);
}

/* Form Messages */
.form-message {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  display: none;
}

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

.form-message--success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--go365-primary);
  color: var(--go365-primary-dark);
}

.form-message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #EF4444;
  color: #DC2626;
}

/* ========================================
   Services Page
   ======================================== */

.page-header {
  background: var(--gradient-dark);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.page-header__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header__title {
  color: var(--go365-light);
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  color: var(--go365-gray-light);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-detail {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid #E2E8F0;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail__grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .service-detail__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) .service-detail__content {
    order: 2;
  }

  .service-detail:nth-child(even) .service-detail__visual {
    order: 1;
  }
}

.service-detail__icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-detail__icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.service-detail__title {
  margin-bottom: var(--space-md);
}

.service-detail__text {
  margin-bottom: var(--space-lg);
}

.service-detail__features {
  list-style: none;
  padding: 0;
}

.service-detail__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.service-detail__features li svg {
  width: 20px;
  height: 20px;
  color: var(--go365-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-visual {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

.service-visual__icon {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual__icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--go365-primary);
  fill: none;
  stroke-width: 1.5;
}

/* ========================================
   About Page
   ======================================== */

.about-intro {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1.5fr;
  }
}

.about-profile {
  text-align: center;
}

.about-profile__image {
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: white;
  font-weight: 700;
}

.about-profile__name {
  margin-bottom: var(--space-xs);
}

.about-profile__title {
  color: var(--go365-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.about-profile__qualifications {
  color: var(--go365-gray);
  font-size: 0.875rem;
}

.about-bio h3 {
  margin-bottom: var(--space-md);
}

.values-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--go365-primary);
}

.value-card__title {
  margin-bottom: var(--space-sm);
}

/* ========================================
   Solutions Page
   ======================================== */

.solutions-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.solution-card__header {
  background: var(--gradient-dark);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.solution-card__header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.solution-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.solution-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--go365-primary);
  fill: none;
  stroke-width: 2;
}

.solution-card__body {
  padding: var(--space-xl);
}

.solution-card__title {
  margin-bottom: var(--space-sm);
}

.solution-card__text {
  margin-bottom: var(--space-lg);
}

.solution-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--go365-gray-dark);
  margin-bottom: var(--space-sm);
}

.solution-card__features li svg {
  width: 16px;
  height: 16px;
  color: var(--go365-primary);
  flex-shrink: 0;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* ========================================
   Utility Classes
   ======================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.text-primary {
  color: var(--go365-primary);
}

.text-secondary {
  color: var(--go365-secondary);
}

.text-gray {
  color: var(--go365-gray);
}

.text-light {
  color: var(--go365-light);
}

.bg-primary {
  background-color: var(--go365-primary);
}

.bg-dark {
  background-color: var(--go365-dark);
}

.bg-light {
  background-color: var(--go365-light);
}

/* ========================================
   Presentation Cards
   ======================================== */

.presentation-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.presentation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.presentation-card__header {
  background: var(--gradient-dark);
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.presentation-card__icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.presentation-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
}

.presentation-card__badge {
  display: inline-block;
  background: var(--go365-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.presentation-card__badge--secondary {
  background: var(--go365-secondary);
}

.presentation-card__body {
  padding: var(--space-xl);
}

.presentation-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--go365-dark);
}

.presentation-card__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--go365-primary);
  margin-bottom: var(--space-md);
}

.presentation-card__text {
  color: var(--go365-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.presentation-card__topics {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.presentation-card__topics li {
  background: rgba(16, 185, 129, 0.1);
  color: var(--go365-primary-dark);
  font-size: 0.8rem;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin: 0;
}

.presentation-card__meta {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--go365-gray-light);
  font-size: 0.875rem;
}

.presentation-card__duration,
.presentation-card__slides {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.presentation-card__duration svg {
  color: var(--go365-gray-light);
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE PROFILE IMAGE
   ═══════════════════════════════════════════════════════════════════ */

img.about-profile__image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--go365-primary);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   SOLUTION CARD BADGES
   ═══════════════════════════════════════════════════════════════════ */

.solution-card__header {
  position: relative;
}

.solution-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--go365-secondary) 0%, var(--go365-secondary-dark) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════════
   LEGAL CONTENT (Privacy, EULA)
   ═══════════════════════════════════════════════════════════════════ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--go365-primary);
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--go365-gray-dark);
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
  color: var(--go365-gray-dark);
}

.legal-content ul {
  margin-bottom: var(--space-lg);
}

.legal-content__updated {
  background: rgba(16, 185, 129, 0.1);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--go365-primary);
}

.legal-content__contact {
  background: var(--go365-light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.legal-content__contact p {
  margin-bottom: var(--space-sm);
}

.legal-content__company {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--go365-gray);
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════════
   HELP CONTENT (Product Documentation)
   ═══════════════════════════════════════════════════════════════════ */

.help-content {
  max-width: 900px;
  margin: 0 auto;
}

.help-section {
  margin-bottom: var(--space-3xl);
}

.help-section h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--go365-primary);
}

.help-section h3 {
  font-size: 1.25rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--go365-dark);
}

.help-section ol,
.help-section ul {
  margin-bottom: var(--space-lg);
}

.help-section li {
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

/* Help Features Grid */
.help-features {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .help-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.help-feature {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.help-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.help-feature__icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.help-feature__icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.help-feature__content h3 {
  font-size: 1rem;
  margin: 0 0 var(--space-sm);
}

.help-feature__content p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--go365-gray);
}

/* Help Table */
.help-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.875rem;
}

.help-table th,
.help-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.help-table th {
  background: var(--go365-dark);
  color: white;
  font-weight: 600;
}

.help-table tr:hover td {
  background: rgba(16, 185, 129, 0.05);
}

/* Help Callout Boxes */
.help-callout {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  font-size: 0.9rem;
}

.help-callout--warning {
  background: rgba(251, 191, 36, 0.1);
  border-left: 4px solid #F59E0B;
}

.help-callout--error {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #EF4444;
}

/* Help FAQ */
.help-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.help-faq__item {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.help-faq__item h3 {
  font-size: 1rem;
  margin: 0 0 var(--space-sm);
  color: var(--go365-dark);
}

.help-faq__item p {
  margin: 0;
  color: var(--go365-gray);
}

.help-section--legal ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: var(--space-xl);
}

.help-section--legal a {
  color: var(--go365-primary);
  font-weight: 500;
}

/* Page Header Badge */
.page-header__badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--go365-primary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.page-header--product {
  background: var(--gradient-dark);
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
}

.page-header--product .page-header__title {
  color: white;
}

.page-header--product .page-header__subtitle {
  color: var(--go365-gray-light);
  max-width: 600px;
}

kbd {
  background: var(--go365-dark);
  color: white;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: monospace;
}