/*
Theme Name: DeployIT
Theme URI: https://deployit.ovh
Author: DeployIT
Author URI: https://deployit.ovh
Description: A professional one-page theme for DeployIT — custom software development company.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deployit
*/

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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

a { text-decoration: none; color: inherit; }

/* ── Hero ── */
.deployit-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 40%, #24243e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.deployit-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(0,180,216,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(114,9,183,0.06) 0%, transparent 50%);
  animation: deployit-drift 20s ease-in-out infinite alternate;
}
@keyframes deployit-drift {
  0%   { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(30px,-20px) rotate(3deg); }
}
.deployit-hero-content {
  position: relative; z-index: 1;
  max-width: 800px;
}
.deployit-logo { margin-bottom: 32px; }
.deployit-logo svg { width: 80px; height: 80px; }

.deployit-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.deployit-hero h1 span { color: #00b4d8; }

.deployit-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.deployit-cta {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}
.deployit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,180,216,0.35);
  color: #fff;
}

.deployit-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: deployit-bounce 2s ease-in-out infinite;
}
@keyframes deployit-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ── */
.deployit-section {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.deployit-section-dark {
  background: #f8f9fb;
  padding: 100px 24px;
}
.deployit-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.deployit-section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.deployit-section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Services ── */
.deployit-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.deployit-service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.deployit-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.deployit-service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #e0f7fa, #e3f2fd);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.deployit-service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.deployit-service-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Process ── */
.deployit-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.deployit-process-step {
  text-align: center;
  position: relative;
  padding: 24px 16px;
}
.deployit-process-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #0f0c29, #1a1a3e);
  color: #00b4d8;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 48px;
  margin: 0 auto 16px;
}
.deployit-process-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.deployit-process-step p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* ── Why Us ── */
.deployit-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}
.deployit-why-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00b4d8;
  margin-bottom: 8px;
}
.deployit-why-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.deployit-why-item p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* ── Contact ── */
.deployit-contact-wrap {
  background: linear-gradient(135deg, #0f0c29 0%, #1a1a3e 40%, #24243e 100%);
  padding: 100px 24px;
}
.deployit-contact-inner {
  max-width: 600px;
  margin: 0 auto;
}
.deployit-contact-wrap .deployit-section-title { color: #fff; }
.deployit-contact-wrap .deployit-section-subtitle { color: rgba(255,255,255,0.6); }

.deployit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.deployit-form input,
.deployit-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.deployit-form input::placeholder,
.deployit-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.deployit-form input:focus,
.deployit-form textarea:focus {
  border-color: #00b4d8;
  background: rgba(255,255,255,0.1);
}
.deployit-form textarea { min-height: 140px; resize: vertical; }
.deployit-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.deployit-form button {
  padding: 16px 40px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: flex-start;
}
.deployit-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,180,216,0.35);
}
.deployit-form-success {
  display: none;
  text-align: center;
  color: #00b4d8;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 40px 0;
}
.deployit-contact-email {
  text-align: center;
  margin-top: 40px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.deployit-contact-email a { color: #00b4d8; }

/* ── Footer ── */
.deployit-footer {
  background: #0a0a1a;
  text-align: center;
  padding: 32px 24px;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .deployit-form-row { grid-template-columns: 1fr; }
  .deployit-section,
  .deployit-section-dark,
  .deployit-contact-wrap { padding: 60px 20px; }
}
