-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1160 lines (1048 loc) · 60.6 KB
/
index.html
File metadata and controls
1160 lines (1048 loc) · 60.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes">
<title>Manay - Your Home, Simplified | Bengaluru Rental Management</title>
<meta name="description" content="Manay (ಮನೆ) - Bengaluru's smartest rental management platform. Compliant with Karnataka's January 2026 rental laws. 2-month deposit cap tracking, Kaveri 2.0 registration, Rent Tribunal support, automated rent collection.">
<meta name="keywords" content="Manay, ಮನೆ, Bengaluru rentals, rent management, UPI rent, HRA receipts, tenant verification, landlord tools, rental agreement">
<meta name="author" content="Manay Technologies Pvt Ltd">
<meta name="robots" content="index, follow">
<!-- CSP Meta Tag (Content Security Policy) -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://www.googletagmanager.com https://cdnjs.cloudflare.com https://fonts.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://cdnjs.cloudflare.com; font-src 'self' https://fonts.gstatic.com https://cdnjs.cloudflare.com; img-src 'self' data: https:; connect-src 'self' https://formspree.io; frame-src 'none'; object-src 'none';">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://manay.in/">
<meta property="og:title" content="Manay (ಮನೆ) - Your Home, Simplified | Bengaluru Rental Management">
<meta property="og:description" content="Bengaluru's smartest rental management platform. Karnataka 2026 Rental Law compliant: 2-month deposit cap, Kaveri 2.0 integration, automated rent collection.">
<meta property="og:image" content="https://manay.in/og-image.svg">
<meta property="og:image:alt" content="Manay rental management platform interface showing rent notifications and HRA receipts">
<meta property="og:locale" content="en_IN">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://manay.in/">
<meta name="twitter:title" content="Manay (ಮನೆ) - Your Home, Simplified | Karnataka 2026 Law Compliant">
<meta name="twitter:description" content="Bengaluru's smartest rental management platform. Karnataka 2026 Rental Law compliant: 2-month deposit cap, Kaveri 2.0 integration, automated rent collection.">
<meta name="twitter:image" content="https://manay.in/og-image.svg">
<meta name="twitter:image:alt" content="Manay rental management platform interface showing rent notifications and HRA receipts">
<!-- Canonical URL -->
<link rel="canonical" href="https://manay.in/">
<!-- Preconnect Hints -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin>
<!-- DNS Prefetch -->
<link rel="dns-prefetch" href="https://formspree.io">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<!-- Google Analytics - Uncomment and add your GA_MEASUREMENT_ID when ready -->
<!--
<script async src="https://www.googletagmanager.com/gtag/js?id=GA_MEASUREMENT_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'GA_MEASUREMENT_ID');
</script>
-->
<!-- JSON-LD Structured Data - LocalBusiness Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Manay - Rental Management Platform",
"alternateName": "ಮನೆ",
"description": "Bengaluru's smartest rental management platform. Automated rent collection via UPI, instant HRA receipts, digital agreements, and seamless landlord-tenant communication.",
"url": "https://manay.in/",
"logo": "https://manay.in/og-image.svg",
"image": "https://manay.in/og-image.svg",
"email": "hello@manay.in",
"address": {
"@type": "PostalAddress",
"addressLocality": "Bengaluru",
"addressRegion": "Karnataka",
"addressCountry": "IN"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "12.9716",
"longitude": "77.5946"
},
"areaServed": [
{
"@type": "City",
"name": "Bengaluru Central"
},
{
"@type": "City",
"name": "Bengaluru South"
}
],
"serviceType": ["Rental Property Management", "Rent Collection", "Digital Rental Agreements"],
"priceRange": "Free - Affordable monthly plans",
"foundingDate": "2026",
"sameAs": []
}
</script>
<!-- Organization Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Manay Technologies Pvt Ltd",
"alternateName": "Manay",
"url": "https://manay.in/",
"logo": "https://manay.in/og-image.svg",
"description": "Rental management technology company based in Bengaluru",
"email": "hello@manay.in",
"address": {
"@type": "PostalAddress",
"addressLocality": "Bengaluru",
"addressRegion": "Karnataka",
"addressCountry": "IN"
},
"sameAs": []
}
</script>
<!-- Website Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Manay",
"url": "https://manay.in/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://manay.in/?search={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- Styles -->
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Scroll Progress Bar -->
<div class="scroll-progress-bar" id="scrollProgressBar" aria-hidden="true"></div>
<!-- Page Loader -->
<div class="page-loader" id="pageLoader" aria-hidden="true">
<div class="loader-spinner" role="status">
<span class="sr-only">Loading...</span>
</div>
<p aria-live="polite">Loading Manay...</p>
</div>
<!-- Skip to main content -->
<a href="#main-content" class="skip-link">Skip to main content</a>
<!-- Toast Notification Container -->
<div class="toast-container" id="toastContainer" aria-live="polite" aria-atomic="true"></div>
<!-- Cookie Consent Banner -->
<div class="cookie-banner" id="cookieBanner" role="dialog" aria-label="Cookie Consent Banner" aria-live="polite">
<div class="cookie-content">
<p>We use cookies to enhance your experience. By continuing to visit this site, you agree to our use of cookies. <a href="privacy-policy.html" class="cookie-link">Learn more</a></p>
<div class="cookie-buttons">
<button class="cookie-btn cookie-accept" id="cookieAccept" aria-label="Accept all cookies">Accept All</button>
<button class="cookie-btn cookie-decline" id="cookieDecline" aria-label="Decline cookies">Decline</button>
</div>
</div>
</div>
<!-- Keyboard Shortcuts Help Modal -->
<div class="keyboard-help-modal" id="keyboardHelpModal" role="dialog" aria-labelledby="keyboard-help-title" aria-hidden="true">
<div class="keyboard-help-content">
<button class="keyboard-help-close" id="closeKeyboardHelp" aria-label="Close keyboard shortcuts help">
<i class="fas fa-times"></i>
</button>
<h3 id="keyboard-help-title">Keyboard Shortcuts</h3>
<div class="keyboard-shortcuts-list">
<div class="shortcut-item">
<kbd>?</kbd>
<span>Show/hide this help</span>
</div>
<div class="shortcut-item">
<kbd>Esc</kbd>
<span>Close modals/menus</span>
</div>
<div class="shortcut-item">
<kbd>w</kbd>
<span>Go to waitlist</span>
</div>
<div class="shortcut-item">
<kbd>l</kbd>
<span>Landlords view</span>
</div>
<div class="shortcut-item">
<kbd>r</kbd>
<span>Tenants view</span>
</div>
<div class="shortcut-item">
<kbd>t</kbd>
<span>Scroll to top</span>
</div>
</div>
</div>
</div>
<!-- ARIA Live Region for Form Messages -->
<div id="aria-live-region" class="sr-only" aria-live="assertive" aria-atomic="true"></div>
<!-- Page Skip Navigation for Accessibility -->
<nav aria-label="Skip links" class="skip-nav">
<a href="#landlords" class="skip-link">Skip to Landlords section</a>
<a href="#renters" class="skip-link">Skip to Tenants section</a>
<a href="pricing.html" class="skip-link">Skip to Pricing</a>
</nav>
<!-- Navigation -->
<nav class="navbar" id="navbar" aria-label="Main navigation">
<div class="nav-glass-effect"></div>
<div class="container">
<div class="nav-brand">
<a href="index.html" aria-label="Manay Home">
<span class="logo" aria-hidden="true">ಮನೆ</span>
<span class="brand-name">Manay</span>
</a>
</div>
<div class="nav-menu" id="navMenu">
<a href="for-landlords.html" class="nav-link">For Landlords</a>
<a href="for-tenants.html" class="nav-link">For Tenants</a>
<a href="pricing.html" class="nav-link">Pricing</a>
<a href="good-karma.html" class="nav-link">Good Karma</a>
<a href="#waitlist" class="nav-link cta-button">Join Waitlist</a>
</div>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="navMenu" tabindex="0">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<!-- Hero Section -->
<main id="main-content">
<section class="hero" aria-label="Hero">
<div class="hero-parallax-bg"></div>
<div class="container">
<div class="hero-content">
<h1 class="hero-title gradient-text">Finally, a Rental Experience Everyone Loves</h1>
<p class="hero-subtitle">Built for Bengaluru. Designed for trust. Automate rent, HRA receipts, and maintenance - all via WhatsApp.</p>
<div class="hero-toggle" role="tablist" aria-label="User type selection">
<button class="toggle-btn active" data-target="landlords" role="tab" aria-selected="true" aria-controls="landlords-cta" id="landlord-tab">
<i class="fas fa-building" aria-hidden="true"></i>
I'm a landlord
</button>
<button class="toggle-btn" data-target="renters" role="tab" aria-selected="false" aria-controls="renters-cta" id="renter-tab">
<i class="fas fa-home" aria-hidden="true"></i>
I'm a tenant
</button>
</div>
<div class="hero-cta">
<div id="landlords-cta" class="cta-content active" role="tabpanel" aria-labelledby="landlord-tab">
<p class="cta-text">Professionalize your rental business for free. Zero-chase payments, automated compliance.</p>
<button class="primary-button magnetic-btn" onclick="showWaitlist('landlord')" type="button">
<span>Join Landlord Waitlist</span>
<i class="fas fa-arrow-right" aria-hidden="true"></i>
</button>
</div>
<div id="renters-cta" class="cta-content" role="tabpanel" aria-labelledby="renter-tab" hidden>
<p class="cta-text">Build credit, get instant HRA receipts, and protect your deposit. Affordable monthly plans.</p>
<button class="primary-button magnetic-btn" onclick="showWaitlist('tenant')" type="button">
<span>Join Tenant Waitlist</span>
<i class="fas fa-arrow-right" aria-hidden="true"></i>
</button>
</div>
</div>
</div>
<div class="hero-image lazy-load" data-lazy="true">
<div class="phone-mockup" role="img" aria-label="Manay mobile app interface showing rent received notification, HRA receipt generated, and maintenance request">
<div class="phone-notch"></div>
<div class="screen">
<div class="app-interface">
<div class="notification glass-effect">
<i class="fas fa-check-circle" aria-hidden="true"></i>
<div class="notification-content">
<strong>Rent received</strong>
<span>₹25,000 via UPI</span>
</div>
</div>
<div class="notification glass-effect">
<i class="fas fa-file-contract" aria-hidden="true"></i>
<div class="notification-content">
<strong>Kaveri 2.0 Agreement</strong>
<span>Ready for registration</span>
</div>
</div>
<div class="notification glass-effect">
<i class="fas fa-user-check" aria-hidden="true"></i>
<div class="notification-content">
<strong>Police Verification</strong>
<span>Submitted via Karnataka One</span>
</div>
</div>
<div class="phone-stats">
<div class="stat-item">
<span class="stat-value">✓</span>
<span class="stat-label">On Time</span>
</div>
<div class="stat-item">
<span class="stat-value">✓</span>
<span class="stat-label">Protected</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Toggle Section -->
<section class="section-toggle-section" aria-label="User type selection">
<div class="container">
<div class="section-toggle" role="tablist">
<button class="section-toggle-btn active" data-target="landlord-sections" role="tab" aria-selected="true" id="section-landlord-toggle">
<i class="fas fa-building" aria-hidden="true"></i>
For Landlords
</button>
<button class="section-toggle-btn" data-target="renter-sections" role="tab" aria-selected="false" id="section-renter-toggle">
<i class="fas fa-home" aria-hidden="true"></i>
For Tenants
</button>
</div>
</div>
</section>
<!-- Landlord Sections -->
<div id="landlord-sections" class="user-sections">
<!-- Landlord Features Section -->
<section id="landlords" class="landlord-section lazy-section" aria-labelledby="landlords-heading">
<div class="container">
<div class="section-header">
<h2 id="landlords-heading">Stop "Dealing" With Your Rental. Start Managing It.</h2>
<p>You don't need a property manager taking a cut of your income. You just need the right tools.</p>
</div>
<div class="features-grid">
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-rupee-sign" aria-hidden="true"></i>
</div>
<h3>Zero-Chase Payments</h3>
<p>Rent automatically deducted via UPI Mandate. We handle reminders; you just get the deposit. No more "Sir, please adjust" messages.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-shield-alt" aria-hidden="true"></i>
</div>
<h3>Kaveri 2.0 Registration</h3>
<p>Automatic agreement registration via Karnataka's Kaveri 2.0 portal within 60 days. Fully compliant with 2026 Rent Authority requirements.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-gavel" aria-hidden="true"></i>
</div>
<h3>Rent Tribunal Support</h3>
<p>Complete documentation for fast-track Rent Courts. Resolve disputes in 60 days vs years in civil court. Evidence-ready digital trails.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-balance-scale" aria-hidden="true"></i>
</div>
<h3>Deposit Compliance Guard</h3>
<p>Tracks the 2-month deposit cap with photo evidence. Alerts when tenants are charged illegally. Ensures both sides stay compliant with Karnataka law.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-clipboard-check" aria-hidden="true"></i>
</div>
<h3>Property Care Visits</h3>
<p>Third-party property care visits — up to quarterly for Gold Karma. They don't just inspect — they catch issues early, handle minor repairs, and document everything. Protects tenants' deposits. Protects landlords' investments. No he-said-she-said — just facts.</p>
</article>
</div>
<!-- Value Proposition Box -->
<div class="value-prop-box glass-effect">
<div class="value-prop-item">
<i class="fas fa-clock" aria-hidden="true"></i>
<div class="value-prop-content">
<strong>Hours saved monthly</strong>
<span>No more chasing payments, manual receipts, or maintenance calls — real time savings vary by property</span>
</div>
</div>
<div class="value-prop-item">
<i class="fas fa-rupee-sign" aria-hidden="true"></i>
<div class="value-prop-content">
<strong>Save thousands yearly</strong>
<span>No property manager fees, late payment penalties, or missed tax savings</span>
</div>
</div>
</div>
</div>
</section>
</div><!-- End Landlord Sections -->
<!-- Tenant Sections -->
<div id="renter-sections" class="user-sections hidden">
<!-- Tenant Features Section -->
<section id="renters" class="renter-section lazy-section" aria-labelledby="renters-heading">
<div class="container">
<div class="section-header">
<h2 id="renters-heading">Know Your Rights Under 2026 Laws</h2>
<p>The Karnataka Rent (Amendment) Bill protects you. 2-month deposit cap, 24-hour privacy notice, and fast-track dispute resolution.</p>
</div>
<div class="features-grid">
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-chart-line" aria-hidden="true"></i>
</div>
<h3>Build Your Credit Score</h3>
<p>We report your on-time rent payments to credit bureaus. Watch your credit score go up just by paying rent. Crucial for home loans.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-receipt" aria-hidden="true"></i>
</div>
<h3>Instant HRA Receipts</h3>
<p>Automatic monthly rent receipts with landlord PAN for tax exemption. No more awkward "Sir, please send receipt" messages.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-users" aria-hidden="true"></i>
</div>
<h3>Roommate Math Solved</h3>
<p>Split rent and utilities automatically. One person pays landlord, but app tracks who contributed what. No more spreadsheet wars.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-camera" aria-hidden="true"></i>
</div>
<h3>Deposit Protection</h3>
<p>New Karnataka laws cap deposits at 2 months. We help ensure you pay only what's legal. Timestamped move-in/move-out photos stored securely for dispute resolution.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-user-shield" aria-hidden="true"></i>
</div>
<h3>24-Hour Privacy Guard</h3>
<p>Landlords must give 24hr notice before entry. We log all notices and alert you to violations. Protection from unannounced visits and harassment.</p>
</article>
<article class="feature-card lift-card">
<div class="feature-icon">
<i class="fas fa-bolt" aria-hidden="true"></i>
</div>
<h3>Essential Service Protection</h3>
<p>Illegal for landlords to cut water/electricity during disputes. The Rent Authority can order restoration within 24 hours. We provide immediate legal support contacts if this happens.</p>
</article>
</div>
</div>
</section>
</div><!-- End Tenant Sections -->
<!-- Shared Sections (Both) -->
<!-- Bengaluru Features -->
<section class="bangalore-section lazy-section" aria-labelledby="bangalore-heading">
<div class="container">
<div class="section-header">
<h2 id="bangalore-heading">2026 Karnataka Rental Laws - Fully Supported</h2>
<p>The January 2026 Karnataka Rent (Amendment) Bill changes everything. Manay keeps you compliant while protecting your rights.</p>
</div>
<div class="bangalore-grid">
<article class="bangalore-card lift-card glass-effect">
<h3><i class="fas fa-piggy-bank" aria-hidden="true"></i> 2-Month Deposit Cap</h3>
<p>Jan 2026: Karnataka law now caps deposits at 2 months for residential (6 months for commercial). We track compliance and alert you if landlords demand more.</p>
</article>
<article class="bangalore-card lift-card glass-effect">
<h3><i class="fas fa-file-contract" aria-hidden="true"></i> Kaveri 2.0 Registration</h3>
<p>Mandatory registration within 60 days via state portal. You get a Unique Tenancy ID. We auto-submit to Rent Authority with Aadhaar eSign.</p>
</article>
<article class="bangalore-card lift-card glass-effect">
<h3><i class="fas fa-gavel" aria-hidden="true"></i> Fast-Track Rent Courts</h3>
<p>New Rent Tribunals resolve disputes in 60 days. Violations are decriminalized — no jail, but fines of ₹10,000-₹50,000. We prepare complete documentation packages for quick resolution.</p>
</article>
<article class="bangalore-card lift-card glass-effect">
<h3><i class="fas fa-user-shield" aria-hidden="true"></i> 24-Hour Privacy Rule</h3>
<p>Landlords must give 24hr notice before entry. We track all notices and protect you from harassment.</p>
</article>
<article class="bangalore-card lift-card glass-effect">
<h3><i class="fas fa-bolt" aria-hidden="true"></i> Essential Service Protection</h3>
<p>Illegal to cut water/electricity during disputes. The Rent Authority can order restoration within 24 hours. We provide immediate legal support contacts if this happens.</p>
</article>
<article class="bangalore-card lift-card glass-effect">
<h3><i class="fas fa-chart-line" aria-hidden="true"></i> Rent Increase Limits</h3>
<p>Landlords must give 90 days' notice for rent increases. Typical increases are 5-10% annually, agreed in your contract. We flag anything outside your agreement.</p>
</article>
<article class="bangalore-card lift-card glass-effect">
<h3><i class="fas fa-tools" aria-hidden="true"></i> Clear Maintenance Split</h3>
<p>Landlords handle structural repairs, painting, and major plumbing. Tenants handle day-to-day upkeep. Property care visits document who's responsible for what.</p>
</article>
</div>
<div style="text-align: center; margin-top: 1.5rem;">
<a href="rental-law-2026.html" style="color: var(--accent); font-weight: 600;">Read the full law guide →</a>
</div>
</div>
</section>
<!-- How It Works -->
<section class="how-it-works lazy-section" aria-labelledby="howitworks-heading">
<div class="container">
<div class="section-header">
<h2 id="howitworks-heading">How It Works</h2>
<p>Different flows for different needs. Choose your path.</p>
</div>
<!-- How It Works Toggle -->
<div class="section-toggle" role="tablist" aria-label="Flow type selection">
<button class="section-toggle-btn active" data-target="landlord-flow" role="tab" aria-selected="true" id="flow-landlord-toggle">
<i class="fas fa-building" aria-hidden="true"></i>
Landlord Initiated
</button>
<button class="section-toggle-btn" data-target="renter-flow" role="tab" aria-selected="false" id="flow-renter-toggle">
<i class="fas fa-home" aria-hidden="true"></i>
Tenant Initiated
</button>
</div>
<!-- Landlord Flow -->
<div id="landlord-flow" class="flow-container">
<div class="steps-container">
<div class="step" data-step="1">
<div class="step-number" aria-hidden="true">1</div>
<h3>List Your Property</h3>
<p>Add your property details, upload documents, and set rent terms. Takes 5 minutes.</p>
</div>
<div class="step" data-step="2">
<div class="step-number" aria-hidden="true">2</div>
<h3>Invite Tenant</h3>
<p>Send invite via WhatsApp or email. Tenant completes verification and eSigns agreement.</p>
</div>
<div class="step" data-step="3">
<div class="step-number" aria-hidden="true">3</div>
<h3>Collect Rent Automatically</h3>
<p>UPI autopay activates. Rent deposited directly to your account. We handle reminders.</p>
</div>
</div>
</div>
<!-- Tenant Flow -->
<div id="renter-flow" class="flow-container hidden">
<div class="steps-container">
<div class="step" data-step="1">
<div class="step-number" aria-hidden="true">1</div>
<h3>Find Your Home</h3>
<p>Browse verified listings or request your landlord to join Manay for a seamless experience.</p>
</div>
<div class="step" data-step="2">
<div class="step-number" aria-hidden="true">2</div>
<h3>Complete Setup</h3>
<p>Verify identity with Aadhaar, sign digital agreement, and set up UPI autopay for rent.</p>
</div>
<div class="step" data-step="3">
<div class="step-number" aria-hidden="true">3</div>
<h3>Enjoy Protection</h3>
<p>Get HRA receipts instantly, deposit protection, and 24/7 support. Build your credit score.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing CTA -->
<section id="pricing" class="pricing-cta-section lazy-section" aria-labelledby="pricing-heading">
<div class="container">
<div class="section-header">
<h2 id="pricing-heading">Professional Features. Practical Pricing.</h2>
<p>Free for landlords. Affordable for tenants. No hidden fees.</p>
</div>
<div class="pricing-cta-grid">
<article class="pricing-cta-card">
<div class="pricing-cta-icon">
<i class="fas fa-building" aria-hidden="true"></i>
</div>
<h3>For Landlords</h3>
<p class="pricing-cta-price">Free forever</p>
<p class="pricing-cta-desc">1 property included. Upgrade to Pro for unlimited properties and full management tools.</p>
<a href="pricing.html" class="secondary-button">View Plans</a>
</article>
<article class="pricing-cta-card">
<div class="pricing-cta-icon">
<i class="fas fa-home" aria-hidden="true"></i>
</div>
<h3>For Tenants</h3>
<p class="pricing-cta-price">Starting at ₹99/mo</p>
<p class="pricing-cta-desc">Credit score building, HRA receipts, deposit protection. Early bird pricing available.</p>
<a href="pricing.html" class="secondary-button">View Plans</a>
</article>
<article class="pricing-cta-card">
<div class="pricing-cta-icon">
<i class="fas fa-file-contract" aria-hidden="true"></i>
</div>
<h3>Digital Agreement</h3>
<p class="pricing-cta-price">One-time purchase</p>
<p class="pricing-cta-desc">E-stamping, eSign, Aadhaar verification. Valid for 1 year. Separate from subscription plans.</p>
<a href="pricing.html" class="secondary-button">View Details</a>
</article>
</div>
<div class="pricing-cta-footer">
<p>See full pricing details and compare all features</p>
<a href="pricing.html" class="primary-button magnetic-btn">
<span>View Full Pricing</span>
<i class="fas fa-arrow-right" aria-hidden="true"></i>
</a>
</div>
</div>
</section>
<!-- Value Proposition Section -->
<section class="value-section lazy-section" aria-labelledby="value-heading">
<div class="container">
<div class="section-header">
<h2 id="value-heading">Time & Money Saved</h2>
<p>Focus on what matters. Let Manay handle the rest.</p>
</div>
<div class="value-grid">
<article class="value-card" tabindex="0">
<div class="value-icon">
<i class="fas fa-clock" aria-hidden="true"></i>
</div>
<h3>Hours Saved Monthly</h3>
<ul class="value-list">
<li>No more payment follow-ups</li>
<li>Automatic receipt generation</li>
<li>WhatsApp maintenance requests</li>
<li>One-click police verification</li>
</ul>
</article>
<article class="value-card featured-value" tabindex="0">
<div class="value-icon">
<i class="fas fa-rupee-sign" aria-hidden="true"></i>
</div>
<h3>Thousands Saved Yearly</h3>
<ul class="value-list">
<li>No property manager fees</li>
<li>Zero late payment penalties</li>
<li>Maximized HRA tax benefits</li>
<li>No bounced cheque charges</li>
</ul>
</article>
<article class="value-card" tabindex="0">
<div class="value-icon">
<i class="fas fa-brain" aria-hidden="true"></i>
</div>
<h3>Zero Mental Load</h3>
<ul class="value-list">
<li>Automated rent reminders</li>
<li>Document organization</li>
<li>Maintenance coordination</li>
<li>Compliance tracking</li>
</ul>
</article>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="bangalore-section lazy-section" aria-labelledby="faq-heading">
<div class="container">
<div class="section-header">
<h2 id="faq-heading">Frequently Asked Questions</h2>
<p>Everything you need to know about Manay.</p>
</div>
<div class="bangalore-grid" style="max-width: 800px; margin: 0 auto;">
<article class="bangalore-card lift-card glass-effect" style="text-align: left;">
<h3 style="font-size: 1.1rem;">What are Zero-Chase Payments?</h3>
<p>Zero-Chase Payments means you never have to chase tenants for rent again. Rent is automatically deducted via UPI Mandate on the due date. We handle reminders, follow-ups, and late payment notifications. You just receive the deposit — zero chasing required.</p>
</article>
<article class="bangalore-card lift-card glass-effect" style="text-align: left;">
<h3 style="font-size: 1.1rem;">Is the Digital Agreement included in my subscription?</h3>
<p>No. The Digital Agreement is a separate one-time purchase. It covers e-stamping, Aadhaar e-sign, and registration-ready documentation — valid for 1 year. Your subscription (whether landlord or tenant plan) does not include this.</p>
</article>
<article class="bangalore-card lift-card glass-effect" style="text-align: left;">
<h3 style="font-size: 1.1rem;">Is Manay compliant with the 2026 Karnataka rental laws?</h3>
<p>Yes. Manay is built around the January 2026 Karnataka Rent (Amendment) Bill. We help you stay compliant with the 2-month deposit cap, handle Kaveri 2.0 registration within 60 days, and provide documentation for fast-track Rent Tribunals.</p>
</article>
<article class="bangalore-card lift-card glass-effect" style="text-align: left;">
<h3 style="font-size: 1.1rem;">Where is Manay launching first?</h3>
<p>We're launching first in South and Central Bengaluru. Other areas in Bengaluru and major Karnataka cities will follow. Join the waitlist to be notified when we're in your area.</p>
</article>
<article class="bangalore-card lift-card glass-effect" style="text-align: left;">
<h3 style="font-size: 1.1rem;">How does credit score building work for tenants?</h3>
<p>We report your on-time rent payments to credit bureaus. Paying rent on time each month improves your credit score — making it easier to get home loans, credit cards, and better interest rates in the future.</p>
</article>
</div>
</div>
</section>
<!-- FAQ Schema (Google Rich Results) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What are Zero-Chase Payments?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Zero-Chase Payments means you never have to chase tenants for rent again. Rent is automatically deducted via UPI Mandate on the due date. We handle reminders, follow-ups, and late payment notifications. You just receive the deposit — zero chasing required."
}
},
{
"@type": "Question",
"name": "Is the Digital Agreement included in my subscription?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. The Digital Agreement is a separate one-time purchase. It covers e-stamping, Aadhaar e-sign, and registration-ready documentation — valid for 1 year. Your subscription does not include this."
}
},
{
"@type": "Question",
"name": "Is Manay compliant with the 2026 Karnataka rental laws?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Manay is built around the January 2026 Karnataka Rent (Amendment) Bill. We help you stay compliant with the 2-month deposit cap, handle Kaveri 2.0 registration within 60 days, and provide documentation for fast-track Rent Tribunals."
}
},
{
"@type": "Question",
"name": "Where is Manay launching first?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We're launching first in South and Central Bengaluru. Other areas in Bengaluru and major Karnataka cities will follow. Join the waitlist to be notified when we're in your area."
}
},
{
"@type": "Question",
"name": "How does credit score building work for tenants?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We report your on-time rent payments to credit bureaus. Paying rent on time each month improves your credit score — making it easier to get home loans, credit cards, and better interest rates in the future."
}
}
]
}
</script>
<!-- WhatsApp Product Flow -->
<section class="whatsapp-flow" aria-labelledby="whatsapp-flow-heading">
<div class="container">
<h2 id="whatsapp-flow-heading" class="whatsapp-flow__title">Manay Works on <span style="color: #25D366;">WhatsApp</span></h2>
<p class="whatsapp-flow__subtitle">No app download needed. Just send a message and we handle everything — agreements, rent collection, receipts, compliance.</p>
<div style="max-width: 420px; margin: 0 auto;">
<div class="chat-bubble">
<div class="chat-bubble__label chat-bubble__label--user">You</div>
<div class="chat-bubble--user">Hi Manay, I'm a landlord looking for a tenant in Koramangala</div>
</div>
<div class="chat-bubble">
<div class="chat-bubble__label chat-bubble__label--manay">Manay</div>
<div class="chat-bubble--manay">Welcome! 🏠 I'll help you find a verified tenant, create a digital agreement on Kaveri 2.0, and set up Zero-Chase rent collection. What's your property type?</div>
</div>
<div class="chat-bubble">
<div class="chat-bubble__label chat-bubble__label--user">You</div>
<div class="chat-bubble--user">2BHK apartment, rent ₹25,000</div>
</div>
<div class="chat-bubble">
<div class="chat-bubble__label chat-bubble__label--manay">Manay</div>
<div class="chat-bubble--manay">Done! ✅ I've created your listing, set up UPI Mandate for Zero-Chase Payments, and your agreement is ready for e-sign. Rent will be in your account on the 1st.</div>
</div>
<div class="chat-bubble">
<div class="chat-bubble__label chat-bubble__label--user">You</div>
<div class="chat-bubble--user">That was fast. Do I need to do anything else?</div>
</div>
</div>
</div>
</section>
<!-- Trust Badges -->
<section class="trust-badges" aria-labelledby="trust-heading">
<div class="container">
<div class="section-header">
<span class="guide-section-header__tag" style="color: var(--primary-color);">#BuiltForCompliance</span>
<h2 id="trust-heading" style="font-size: 2.25rem; font-weight: 700; color: var(--text-primary);">Built for Bengaluru's 2026 Rental Laws</h2>
</div>
<div class="trust-badges__grid">
<div class="trust-badge">
<div class="trust-badge__icon trust-badge__icon--compliant">
<i class="fas fa-shield-halved" aria-hidden="true"></i>
</div>
<div class="trust-badge__text">
<div class="trust-badge__title">Karnataka 2026 Compliant</div>
<div class="trust-badge__desc">2-month deposit cap, Kaveri 2.0, Rent Tribunal ready</div>
</div>
</div>
<div class="trust-badge">
<div class="trust-badge__icon trust-badge__icon--secure">
<i class="fas fa-lock" aria-hidden="true"></i>
</div>
<div class="trust-badge__text">
<div class="trust-badge__title">UPI Secure Payments</div>
<div class="trust-badge__desc">Bank-grade security, RBI-regulated, instant settlement</div>
</div>
</div>
<div class="trust-badge">
<div class="trust-badge__icon trust-badge__icon--verified">
<i class="fas fa-file-signature" aria-hidden="true"></i>
</div>
<div class="trust-badge__text">
<div class="trust-badge__title">Digital Agreements</div>
<div class="trust-badge__desc">Aadhaar e-sign, e-stamping, registration-ready</div>
</div>
</div>
</div>
</div>
</section>
<!-- Good Karma Teaser -->
<section class="karma-teaser" aria-labelledby="karma-teaser-heading">
<div class="container">
<div class="karma-teaser__content">
<div class="karma-teaser__text">
<span class="guide-section-header__tag" style="color: #10b981;">#GoodKarma</span>
<h2 id="karma-teaser-heading" class="karma-teaser__title">Good Tenants Get Rewarded. Good Landlords Get Recognized.</h2>
<p class="karma-teaser__desc">India's first mutual reputation system for rentals. Pay on time, maintain your home, follow the rules — and unlock real perks: lower deposits, rent caps, and verified trust.</p>
<a href="good-karma.html" class="primary-button magnetic-btn">Explore Good Karma →</a>
</div>
<div class="karma-teaser__badges">
<div class="karma-teaser__badge karma-teaser__badge--gold">
<span class="karma-teaser__badge-icon">✦</span>
<span class="karma-teaser__badge-name">Gold</span>
<span class="karma-teaser__badge-perk">1-mo deposit</span>
</div>
<div class="karma-teaser__badge karma-teaser__badge--silver">
<span class="karma-teaser__badge-icon">✦</span>
<span class="karma-teaser__badge-name">Silver</span>
<span class="karma-teaser__badge-perk">8% rent cap</span>
</div>
<div class="karma-teaser__badge karma-teaser__badge--bronze">
<span class="karma-teaser__badge-icon">✦</span>
<span class="karma-teaser__badge-name">Bronze</span>
<span class="karma-teaser__badge-perk">Standard terms</span>
</div>
</div>
</div>
</div>
</section>
<!-- WhatsApp CTA -->
<section class="whatsapp-cta" aria-labelledby="whatsapp-cta-heading">
<div class="container">
<h2 id="whatsapp-cta-heading" class="whatsapp-cta__title">Start on WhatsApp Today</h2>
<p class="whatsapp-cta__text">No app download. No sign-up form. Just message us and we'll set everything up for you.</p>
<a href="https://wa.me/919999999999?text=Hi%20Manay%2C%20I%20want%20to%20manage%20my%20rental%20on%20WhatsApp" class="whatsapp-cta__button" target="_blank" rel="noopener noreferrer" aria-label="Chat with Manay on WhatsApp">
<i class="fab fa-whatsapp" aria-hidden="true"></i>
Chat on WhatsApp
</a>
<span class="whatsapp-cta__secondary">Or <a href="#waitlist">join the waitlist</a> for early access</span>
</div>
</section>
<!-- Waitlist Form -->
<section id="waitlist" class="waitlist-section" aria-labelledby="waitlist-heading">
<div class="container">
<div class="waitlist-form-container">
<h2 id="waitlist-heading">Ready to Upgrade Your Rental Relationship?</h2>
<p>Launching first in South and Central Bengaluru. Secure your beta spot.</p>
<!-- Formspree Form -->
<form id="waitlistForm" class="waitlist-form" action="https://formspree.io/f/mnjgyvkz" method="POST" novalidate aria-label="Waitlist signup form">
<input type="hidden" name="_subject" value="New Manay Waitlist Signup">
<input type="hidden" name="_next" value="https://manay.in/?form=success">
<div class="form-group">
<label for="name">Your Name</label>
<input type="text" id="name" name="name" placeholder="Your Name" required aria-required="true" autocomplete="name" aria-describedby="name-error">
<span class="error-message" id="name-error" role="alert" aria-live="polite"></span>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" placeholder="Email Address" required aria-required="true" autocomplete="email" aria-describedby="email-error">
<span class="error-message" id="email-error" role="alert" aria-live="polite"></span>
</div>
<div class="form-group">
<label for="phone">Phone Number (WhatsApp)</label>
<div class="phone-input-group">
<select id="countryCode" name="countryCode" class="country-code-select" aria-label="Country code">
<option value="+91" selected>+91 🇮🇳 India</option>
<option value="+1">+1 🇺🇸 USA / Canada</option>
<option value="+44">+44 🇬🇧 UK</option>
<option value="+971">+971 🇦🇪 UAE</option>
<option value="+966">+966 🇸🇦 Saudi Arabia</option>
<option value="+65">+65 🇸🇬 Singapore</option>
<option value="+61">+61 🇦🇺 Australia</option>
<option value="+965">+965 🇰🇼 Kuwait</option>
<option value="+968">+968 🇴🇲 Oman</option>
<option value="+60">+60 🇲🇾 Malaysia</option>
</select>
<input type="tel" id="phone" name="phone" placeholder="Phone Number (WhatsApp)" required aria-required="true" autocomplete="tel" pattern="[6-9][0-9]{9}" aria-describedby="phone-error" class="phone-number-input">
</div>
<span class="error-message" id="phone-error" role="alert" aria-live="polite"></span>
</div>
<div class="form-group">
<label for="userType">I am a...</label>
<select id="userType" name="userType" required aria-required="true" aria-describedby="userType-error">
<option value="" disabled selected>I am a...</option>
<option value="landlord">Landlord</option>
<option value="tenant">Tenant</option>
<option value="both">Both</option>
</select>
<span class="error-message" id="userType-error" role="alert" aria-live="polite"></span>
</div>
<div class="form-group">
<label for="area">Area (e.g., Jayanagar, Indiranagar)</label>
<input type="text" id="area" name="area" placeholder="Area (e.g., Jayanagar, Indiranagar)" autocomplete="off">
</div>
<div class="form-group">
<label for="message">Message (Optional)</label>
<textarea id="message" name="message" rows="3" placeholder="Tell us more about your needs..."></textarea>
</div>
<button type="submit" class="primary-button magnetic-btn" id="submitBtn">
<span class="btn-text">Get Early Access</span>
<span class="btn-loading" style="display: none;" aria-hidden="true">
<i class="fas fa-spinner fa-spin"></i> Submitting...
</span>
</button>
</form>
<div class="form-success" id="formSuccess" role="status" aria-live="polite">
<i class="fas fa-check-circle" aria-hidden="true"></i>
<h3>You're on the list!</h3>
<p>We'll WhatsApp you when we're ready for beta testing in your area.</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer" role="contentinfo">
<div class="container">
<div class="footer-content">
<div class="footer-brand">
<span class="logo" aria-hidden="true">ಮನೆ</span>
<span class="brand-name">Manay</span>
<p>Your Home. Your Rules.</p>
<p class="contact-email"><i class="fas fa-envelope" aria-hidden="true"></i> <a href="mailto:hello@manay.in">hello@manay.in</a></p>
</div>
<div class="footer-links">
<h4>Product</h4>
<a href="for-landlords.html">For Landlords</a>
<a href="for-tenants.html">For Tenants</a>