@font-face {
  font-family: 'Clash Grotesk';
  src: url('fonts/ClashGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clash Grotesk';
  src: url('fonts/ClashGrotesk-Semibold.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clash Grotesk';
  src: url('fonts/ClashGrotesk-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clash Grotesk';
  src: url('fonts/ClashGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tanker';
  src: url('fonts/Tanker-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Clash Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #FFC107;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

h1 {
  font-family: 'Tanker', sans-serif;
  font-size: 8rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0;
  line-height: 0.9;
  letter-spacing: -2px;
}

.subtitle {
  font-family: 'Tanker', sans-serif;
  font-size: 5rem;
  font-weight: 400;
  display: block;
  margin-bottom: 30px;
}

p {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 20px 25px;
  font-size: 1.1rem;
  border: 3px solid #1a1a1a;
  border-radius: 15px;
  background: #f5f5f5;
  color: #666;
  transition: all 0.3s;
}

input::placeholder {
  color: #888;
}

input:focus {
  outline: none;
  background: white;
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 0;
  border: 3px solid #1a1a1a;
  border-radius: 15px;
  background: #f5f5f5;
  overflow: hidden;
}

.country-code {
  padding: 20px 15px 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #f5f5f5;
}

.phone-input input {
  border: none;
  border-radius: 0;
  flex: 1;
  padding-left: 10px;
}

button {
  padding: 22px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFC107;
  background: #1a1a1a;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

button:active {
  transform: translateY(0);
}

#message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  font-weight: 500;
  display: none;
}

#message.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
}

#message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

.social-section {
  margin-top: 40px;
}

.social-text {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #FFC107;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  h1 {
      font-size: 4.5rem;
  }
  
  .subtitle {
      font-size: 3rem;
  }
  
  p {
      font-size: 1.1rem;
  }
}