/* ============================================
   GR AGENCY - STYLESHEET
   Modern, Professional Design
   ============================================ */

:root {
    --primary: #FFFFFF;
    --secondary: #FF6B35;
    --accent: #BBBBBB;
    --dark-bg: #0a0a0a;
    --light-bg: #141414;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --border-color: #333333;
    --success: #00d084;
    --danger: #ff4757;

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(255, 255, 255, 0.05);
    --shadow-md: 0 8px 24px rgba(255, 255, 255, 0.07);
    --shadow-lg: 0 12px 48px rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: var(--primary);
    color: var(--dark-bg);
}

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

.btn-secondary {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.logo:hover {
    transform: scale(1.04);
    color: var(--text-primary);
}

.logo-suffix {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1;
}

.logo span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark-bg);
}

.language-toggle {
    display: flex;
    align-items: center;
    padding: 4px 0;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 0.5rem;
    letter-spacing: 0.04em;
}

.language-toggle:hover {
    color: var(--text-primary);
}

.language-toggle:active {
    opacity: 0.7;
}

.lang-text {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 80px;
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--primary), transparent);
    opacity: 0.3;
    filter: blur(60px);
    animation: pulse-float 6s infinite ease-in-out;
}

.pulse-1 {
    width: 300px;
    height: 300px;
    top: 50px;
    right: 50px;
    animation-delay: 0s;
}

.pulse-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: 50px;
    background: radial-gradient(circle at 30% 30%, var(--accent), transparent);
    animation-delay: 1s;
}

.pulse-3 {
    width: 150px;
    height: 150px;
    top: 250px;
    left: 250px;
    background: radial-gradient(circle at 30% 30%, var(--secondary), transparent);
    animation-delay: 2s;
}

@keyframes pulse-float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(50px, -50px); }
    66% { transform: translate(-50px, 50px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 50%, var(--dark-bg) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat h3 {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    margin: 0;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    transform: translateY(-5px);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.07);
    position: absolute;
    top: -20px;
    right: 20px;
}

.about-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 12px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    border-color: var(--primary);
    transform: translateY(-10px);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.features li {
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.88rem;
}

.features li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 300;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 50%, var(--dark-bg) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: var(--dark-bg);
}

.step h3 {
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.step-arrow {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    opacity: 0.5;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.pricing-single {
    display: flex;
    justify-content: center;
}

.pricing-card-single {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--primary);
    padding: 3rem 4rem;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.pricing-card-single h3 {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 380px;
}

.badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 107, 53, 0.05));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.info-items {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.8rem;
}

.info-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-secondary);
    margin: 0;
}

.info-item a {
    color: var(--accent);
}

.social-links h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* ============================================
   FORM STYLES
   ============================================ */

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

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

/* ---- Honeypot (anti-bot, invisible to humans) ---- */

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ---- Custom Select Dropdown ---- */

.custom-select-wrapper {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.custom-select-wrapper.has-value .custom-select-trigger {
    color: var(--text-primary);
}

.custom-select-wrapper.open .custom-select-trigger,
.custom-select-trigger:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.custom-select-trigger:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-group.error .custom-select-trigger {
    border-color: var(--danger);
    background: rgba(255, 71, 87, 0.05);
}

.custom-select-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--text-secondary);
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    list-style: none;
    padding: 6px;
    z-index: 200;
    display: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    max-height: 220px;
    overflow-y: auto;
}

.custom-select-list::-webkit-scrollbar {
    width: 4px;
}
.custom-select-list::-webkit-scrollbar-track {
    background: transparent;
}
.custom-select-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.custom-select-wrapper.open .custom-select-list {
    display: block;
    animation: dropdownFadeIn 0.15s ease-out;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.custom-select-option {
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.custom-select-option.is-selected {
    color: var(--primary);
    font-weight: 500;
}

.custom-select-option.is-placeholder {
    display: none;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group.checkbox a {
    color: var(--accent);
}

.error-message {
    display: block;
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

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

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--danger);
    background: rgba(255, 71, 87, 0.05);
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 20px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .hamburger {
        display: flex;
    }

    .language-toggle {
        margin-left: 0;
        margin-bottom: 1rem;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--light-bg);
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        height: 300px;
    }

    .pulse-circle {
        filter: blur(40px);
    }

    .pulse-1 { width: 150px; height: 150px; }
    .pulse-2 { width: 100px; height: 100px; }
    .pulse-3 { width: 80px; height: 80px; }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }

    .pricing-card.highlight {
        transform: scale(1);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }

    .about-stats {
        gap: 0.5rem;
    }

    .stat {
        padding: 0.75rem 0.5rem;
    }

    .stat h3 {
        font-size: 1.6rem;
    }

    .stat p {
        font-size: 0.75rem;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.5rem;
        padding: 1rem;
        top: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .card-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 1.5rem;
    }

    .pricing-section {
        padding: 2rem;
    }

    .pricing-card-single {
        padding: 2rem 1.5rem;
    }

    .contact-info {
        padding: 0;
    }

    .info-items {
        margin: 1.5rem 0;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

/* ============================================
   LOADING & ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   MOBILE HARDENING
   ============================================ */

/* Prevent iOS Safari from zooming on input focus (font-size must be >= 16px) */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea,
    .custom-select-trigger {
        font-size: 16px;
    }

    /* Touch-friendly tap targets (min 44x44px per WCAG) */
    .btn,
    .nav-link,
    .custom-select-trigger,
    .custom-select-option,
    button[type="submit"] {
        min-height: 44px;
    }

    .custom-select-option {
        padding: 12px 14px;
    }

    /* Smaller blur on mobile (backdrop-filter is GPU-heavy) */
    .navbar {
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    /* Reduced blur on hero pulse circles */
    .pulse-circle {
        filter: blur(30px);
    }

    /* Better link tap behavior on iOS */
    a, button {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
    }

    /* Prevent horizontal scroll caused by tiny overflows */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

/* Safe area insets for iPhones with notch / home indicator */
@supports (padding: max(0px)) {
    .navbar .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar,
    .hero-cta,
    .contact-form {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: #0066cc;
    }
}
